Join Constants
These constants specify the type of join for paths. The appearance of sharp and curve joins is shown in
"Joins"
.
enum {
gxSharpJoin = 0x0000, /* pointed elbow */
gxCurveJoin = 0x0001, /* curved elbow */
gxLevelJoin = 0x0002
};
-
gxSharpJoin
-
Specifies a join with a pointed elbow.
-
gxCurveJoin
-
Specifies a join with a curved elbow.
-
gxLevelJoin
-
Specifies no join, which results in a cut-off elbow. This is the same as a
gxSharpJoin
join with a miter limit of
0
.
© 1997 Apple Computer, Inc.Previous | Chapter Top | Chapter Contents | Next